home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Developer / Mac F2C 1.0 / Mac F2C Libraries / libF77 Sources / getpid.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-15  |  218 b   |  16 lines  |  [TEXT/KAHL]

  1. /*
  2.     Define the getpid() function on the Macintosh.
  3.     Cannot use <unix.h> because it introduces name space conflicts.
  4.     
  5.     IMT 4 Jan 93
  6. */
  7.  
  8. #ifdef MACINTOSH
  9.  
  10. int getpid( void )
  11. {
  12.     extern int __pid;
  13.     return __pid;
  14. }
  15.  
  16. #endif